+Sat Feb 7 01:21:09 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_base_init): Don't use function
+ calls in array initializers, as some compilers seem to hate this.
+ (#133216, Jonas Jonsson)
+
Sat Feb 7 00:06:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkaccelmap.[hc]: Add change notification for GtkAccelMap,
+Sat Feb 7 01:21:09 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_base_init): Don't use function
+ calls in array initializers, as some compilers seem to hate this.
+ (#133216, Jonas Jonsson)
+
Sat Feb 7 00:06:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkaccelmap.[hc]: Add change notification for GtkAccelMap,
+Sat Feb 7 01:21:09 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_base_init): Don't use function
+ calls in array initializers, as some compilers seem to hate this.
+ (#133216, Jonas Jonsson)
+
Sat Feb 7 00:06:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkaccelmap.[hc]: Add change notification for GtkAccelMap,
+Sat Feb 7 01:21:09 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_base_init): Don't use function
+ calls in array initializers, as some compilers seem to hate this.
+ (#133216, Jonas Jonsson)
+
Sat Feb 7 00:06:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkaccelmap.[hc]: Add change notification for GtkAccelMap,
+Sat Feb 7 01:21:09 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_base_init): Don't use function
+ calls in array initializers, as some compilers seem to hate this.
+ (#133216, Jonas Jonsson)
+
Sat Feb 7 00:06:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkaccelmap.[hc]: Add change notification for GtkAccelMap,
if (! initialized)
{
- GType row_inserted_params[] = { GTK_TYPE_TREE_PATH, GTK_TYPE_TREE_ITER };
- GType row_deleted_params[] = { GTK_TYPE_TREE_PATH };
- GType rows_reordered_params[] = { GTK_TYPE_TREE_PATH,
- GTK_TYPE_TREE_ITER,
- G_TYPE_POINTER };
+ GType row_inserted_params[2];
+ GType row_deleted_params[1];
+ GType rows_reordered_params[3];
+
+ row_inserted_params[0] = GTK_TYPE_TREE_PATH;
+ row_inserted_params[1] = GTK_TYPE_TREE_ITER;
+
+ row_deleted_params[0] = GTK_TYPE_TREE_PATH;
+
+ rows_reordered_params[0] = GTK_TYPE_TREE_PATH;
+ rows_reordered_params[1] = GTK_TYPE_TREE_ITER;
+ rows_reordered_params[2] = G_TYPE_POINTER;
tree_model_signals[ROW_CHANGED] =
g_signal_new ("row_changed",